home *** CD-ROM | disk | FTP | other *** search
- //
- // Connection.h
- // SchmoozingExamples
- //
- // Created by garrison on Fri Apr 20 2001.
- // Copyright (c) 2001 Standard Orbit Software, LLC. All rights reserved.
- //
- // Permission is granted to use this code for any purpose, at your own risk.
- // No warranties are expressed or implied.
-
- #import <Foundation/Foundation.h>
-
- @class ONTCPSocket;
-
- @interface Connection : NSObject {
- ONTCPSocket *mySocket;
- }
-
- - (id) initWithConnectedSocket:(ONTCPSocket*) aSocket;
- - (void) dealloc;
-
- - (void) processConnection;
- @end
-